home *** CD-ROM | disk | FTP | other *** search
/ 500 MB Nyheder Direkte fra Internet 2 / 500 MB nyheder direkte fra internet CD 2.iso / start / data / text / faq-1036.txt < prev    next >
Text File  |  1995-05-02  |  61KB  |  1,298 lines

  1. Archive-name: object-faq/part2
  2. Last-Modified: 10/27/94
  3. Version: 1.0.7
  4.  
  5. See APPENDIX E:60 for a CDROM with Internet FAQs.
  6.  
  7. A new C++ libraries FAQ is posted monthly to comp.lang.c++ and should be on
  8. rtfm soon.  Contact cpplibs@trmphrst.demon.co.uk.  It contains anonymous ftp
  9. sites and commercial libraries and may be merged with this FAQ soon.
  10.  
  11. Many FAQs are also available from mail-servers, however most can be accessed by
  12. the rtfm mail-server.  Mail to mail-server@rtfm.mit.edu with help and index in
  13. the body with no leading spaces and on separate lines for more information.
  14.  
  15. Example Unix Command (will retrieve this FAQ in about 26 pieces (and growing)):
  16.   mail mail-server@rtfm.mit.edu
  17.   Subject:
  18.   send usenet/comp.object/*
  19.  
  20. There is also a great ftp site for sci.virtual-worlds on:
  21.   stein.u.washington.edu (140.142.56.1)
  22.           - home of sci.virtual-worlds, huge faq w/ great info!
  23.           - if unable to use try ftp.u.washington.edu
  24.           /public/virtual-worlds
  25.  
  26. [While VR may not be directly related to comp.object, it is most interesting!
  27.    - The Author]
  28.  
  29.  
  30. SECTION 2:  TYPING
  31. ==================
  32.  
  33. There are many definitions of type (and class and related concepts).  Many
  34. authors define the terms as applied by their particular approach or language,
  35. however we shall proceed in the face of this diversity.
  36.  
  37.   References
  38.     [Blair 89]          Some Typing Topics.
  39.     [Booch 91]          Small Section on Typing.
  40.     [Cardelli 85]       Discussion on Object-Oriented Typing.
  41.     [Gunter 94]         Theoretical Aspects of Object-Oriented Programming.
  42.     [Kim 89, ch1]       Discussion on Some Research Topics.
  43.  
  44.  
  45. 2.1)  What Is Polymorphism?
  46. ---------------------------
  47.  
  48. Polymorphism is a ubiquitous concept in object-oriented programming and is
  49. defined in many ways, so many definitions are presented from: Websters',
  50. Author, Strachey, Cardelli and Wegner, Booch, Meyer, Stroustrup, and Rumbaugh.
  51. Polymorphism is often considered the most powerful facility of an OOPL.
  52.  
  53. > Webster's New World Dictionary:
  54.  
  55. Polymorphism 1. State or condition of being polymorphous.  2. Cryall.
  56.   crystallization into 2 or more chemically identical but
  57.   crystallographically distinct forms.  3.  Zool., Bot. existence of an
  58.   animal or plant in several forms or color varieties.
  59.  
  60. polymorphous adj. having, assuming, or passing through many or various forms,
  61.   stages, or the like.  Also, polymorphic. [<Gk polymorphous multiform]
  62.  
  63.  
  64. > Author's Definition:
  65.  
  66. Polymorphism is the ability of an object (or reference) to assume (be replaced
  67. by) or become many different forms of object.  Inheritance (or delegation)
  68. specifies slightly different or additional structure or behavior for an object,
  69. and these more specific or additional attributes of an object of a base class
  70. (or type) when assuming or becoming an object of a derived class characterizes
  71. object-oriented polymorphism.  This is a special case of parametric
  72. polymorphism, which allows an object (or reference) to assume or become any
  73. object (possibly satisfying some implicit or explicit type constraints
  74. (parametric type), or a common structure), with this common structure being
  75. provided by base classes or types (subclass and subtype polymorphism,
  76. respectively).
  77.  
  78. "Poly" means "many" and "morph" means "form".  The homograph polymorphism has
  79. many uses in the sciences, all referring to objects that can take on or assume
  80. many different forms.  Computer Science refers to Strachey's original
  81. definitions of polymorphism, as divided into two major forms, parametric and
  82. ad-hoc.  Cardelli and Wegner followup with another classification scheme,
  83. adding inclusion polymorphism for subtyping and inheritance.
  84.  
  85.  
  86. > Strachey's Original Definition [Strachey 67]:
  87.  
  88. "Parametric polymorphism is obtained when a function works uniformly on a range
  89. of types; these types normally exhibit some common structure.  Ad-hoc
  90. polymorphism is obtained when a function works, or appears to work, on several
  91. different types (which may not exhibit a common structure) and may behave in
  92. unrelated ways for each type."  
  93.  
  94. Parametric polymorphism is also referred to as "true" polymorphism, whereas
  95. ad-hoc polymorphism isn't (apparent polymorphism).
  96.  
  97.  
  98. > Cardelli and Wegner's Definition [Cardelli 85]:
  99.  
  100. C+W refine Strachey's definition by adding "inclusion polymorphism" to model
  101. subtypes and subclasses (inheritance).  Strachey's parametric polymorphism is
  102. divided into parametric and inclusion polymorphism, which are closely related,
  103. but separated to draw a clear distinction between the two forms, which are then
  104. joined as specializations of the new "Universal" polymorphism.
  105.  
  106.                                  |-- parametric
  107.                  |-- universal --|
  108.                  |               |-- inclusion
  109.   polymorphism --|
  110.                  |               |-- overloading
  111.                  |-- ad hoc    --|
  112.                                  |-- coercion
  113.  
  114. Polymorphic Languages: some values and variables may have more than one type.
  115.  
  116. Polymorphic Functions: functions whose operands (actual parameters) can
  117.   have more than one type.  [...] If we consider a generic function to be
  118.   a value, it has many functional types and is therefore polymorphic.
  119.  
  120. Polymorphic Types: types whose operations are applicable to operands of more
  121.   than one type.
  122.  
  123. Parametric Polymorphism: a polymorphic function has an implicit or explicit
  124.   type parameter which determines the type of the argument for each
  125.   application of that function.
  126.  
  127. Inclusion Polymorphism: an object can be viewed as belonging to many different
  128.   classes that need not be disjoint; that is, there may be inclusion of
  129.   classes.
  130.  
  131. The two forms of "Universal Polymorphism", parametric and inclusion are closely
  132. related, but are distinct enough in implementation to justify separate
  133. classifications.
  134.  
  135. Parametric polymorphism is referred to as generics.  Generics can be syntactic,
  136. where each instantiation creates a specialized version of the code allowing
  137. fast running execution, but in a "true polymorphic system", only a single
  138. implementation is used.
  139.  
  140. On inheritance is subtype polymorphism:
  141. "Subtyping on record types corresponds to the concept of inheritance
  142. (subclass) in languages, especially if records are allowed to have functional
  143. components."
  144.  
  145. Author's Notes:
  146. Implicit parametric polymorphism can be implemented with type inferencing
  147. schemes [Aho 85].  ML is prototypical in providing this facility.
  148.  
  149. Inclusion polymorphism is common and is found in languages such as Simula,
  150. Ada-9x, C++, CLOS, Eiffel and etc. (subclass polymorphism).  Smalltalk also
  151. uses inclusion polymorphism; its used in declaring classes, and subclass
  152. polymorphism is used in practice but not enforced.  For inheritance, inclusion
  153. polymorphism specifies an instance of a subclass can appear wherever an
  154. instance of a superclass is required.  For subtyping (subtype polymorphism),
  155. the same applies because all operations required by the supertype are present
  156. in the subtype (subtype is subset of supertype).  Cardelli and Wegner view
  157. classes as sets of objects (resulting in subtype objects are a subset of
  158. supertype objects, or an extensional view), as contrasted with a feature based
  159. (intensional) approach (where subtypes are supersets of (contain) supertypes).
  160. MI provides an interesting example here, as it is set intersection with an
  161. extensional view and set union with an intensional view.  Details are left as
  162. an exercise for the reader.
  163.  
  164. Ada generics and C++ templates provide explicit syntactic generics.  While
  165. Ada may infer some actual generic parameters (operations) and C++ doesn't
  166. require explicit instantiation of its template functions, formal generic
  167. parameters must still be declared and many bodies are generated.
  168.  
  169. Inclusion polymorphism can refer to subtyping, or having at least as much or
  170. more than required.  Since derived classes can inherit structure and behavior
  171. from base classes, such inheritance is an example of inclusion polymorphism
  172. with respect to representation (subclassing).  An example of inclusion
  173. polymorphism with respect to assignment (and initialization, or replacement if
  174. viewed in an almost symbolic way) occurs when object types may be specified and
  175. assignment is based on actual object membership in that type (often of the CLOS
  176. is-a-member-of form in OO).  Emerald provides another example of an object-
  177. oriented language using inclusion polymorphism with respect to replacement;
  178. however, inclusion is with respect to subtyping only with abstract types
  179. ("bounded quantification" by C+W.  C+W's parameters are subtype polymorphic
  180. but lose the inherent type).  Any object possessing all required operations is
  181. acceptable and no inheritance relation is required (subtype polymorphism).
  182. They refer to this as "best-fitting" types [Black 86].  The original Trellis/
  183. Owl also had such a facility but with two separate inheritance hierarchies,
  184. although it was abandoned in favor of a single class-based approach for
  185. simplicity.  See also section 2.7.
  186.  
  187. [As inclusion polymorphism covers both subtype and subclass polymorphism,
  188.  perhaps IP could be further divided in C+W's above classification.]
  189.  
  190.  
  191. > Booch's Definition [Booch 91, p. 517]:
  192.  
  193. polymorphism  A concept in type theory, according to which a name (such as a
  194. variable declaration) may denote objects of many different classes that are
  195. related by some common superclass; thus, any object denoted by this name is
  196. able to respond to some common set of operations in different ways.
  197.  
  198. Booch also has several sections devoted to polymorphism.
  199.  
  200. [The author notes Booch's definition above is clearly in the context of
  201.  conventional, classical OO and subclass polymorphism.]
  202.  
  203.  
  204. > Meyer's Definition [Meyer 88, sect. 10.1.5 Polymorphism]:
  205.  
  206. "Polymorphism" means the ability to take several forms.  In object-oriented
  207. programming, this refers to the ability of an entity to refer at run-time to
  208. instances of various classes.  In a typed environment such as Eiffel, this is
  209. constrained by inheritance: ...
  210.  
  211. [The Author notes Meyer has a following section 10.1.7 on Static Type,
  212.  dynamic type, which is relevant, but claims "... there is no way the type
  213.  of an object can ever change.  Only a reference can be polymorphic: ...".
  214.  Meyer is clear between the concept and the Eiffel realization in his
  215.  polymorphism definition above, but here neglects the "becomes" facility
  216.  as found in several dynamically typed OO languages such as Actors, CLOS,
  217.  Self and Smalltalk, which allows an object (and not just a reference) to
  218.  change its class.]
  219.  
  220.  
  221. > Stroustrup's Definition [Stroustrup 90, p. 209]:
  222.  
  223. The use of derived classes and virtual functions is often called "object-
  224. oriented programming".  Furthermore, the ability to call a variety of
  225. functions using exactly the same interface - as is provided by virtual
  226. functions - is sometimes called "polymorphism".
  227.  
  228. [The Author notes this is a functional view of polymorphism (as provided in
  229. C++).  [Stroustrup 91, p. 136] has an example of polymorphism with void *'s,
  230. but a newer template function is incomparably preferable, as implied in
  231. [Stroustrup 90, ch 14]]
  232.  
  233.  
  234. Rumbaugh's Definition [Rumbaugh 91, p. 2]:
  235.  
  236. "Polymorphism" means that the same operation may behave differently on
  237. different classes.
  238.  
  239.  
  240. 2.2)  What Does Polymorphism Boil Down To In OO Programming Languages?
  241. ----------------------------------------------------------------------
  242.  
  243. In C++, virtual functions provide polymorphism.  This is because a polymorphic
  244. object (pointer or reference (or such parameter)) is assignment compatible with
  245. any object of a derived class.  Is this polymorphism in itself?  Objects
  246. can take on objects of different forms (the derived classes), but of what use
  247. is it?  To make any difference, the differing forms must have some effect.  In
  248. dynamically typed languages, polymorphic objects are passed messages and will
  249. respond in whatever way the object has defined (usually starting from its most
  250. derived class and working its way up).  But for static objects, a virtual
  251. function is invoked.  This is the stored method from the derived class that
  252. overrode the virtual method from its base class, providing specialized behavior
  253. for the polymorphic object; and hence, polymorphism.  This common pure
  254. statically typed example is, of course, an example of inclusion polymorphism,
  255. subclass polymorphism to be more specific (see section 2.1).  Pure statically
  256. typed subtype polymorphism, as provided in Emerald, can be implemented
  257. similarly [Black 86].
  258.  
  259.  
  260. 2.3)  What Is Dynamic Binding?
  261. ------------------------------
  262.  
  263. Dynamic binding has two forms, static and dynamic.  Statically-typed dynamic
  264. binding is found in languages such as C++ (virtual functions) and Eiffel
  265. (redefinition).  It is not known which function will be called for a virtual
  266. function at run-time because a derived class may override the function, in
  267. which case the overriding function must be called.  Statically determining all
  268. possibilities of usage is undecidable.  When the complete program is compiled,
  269. all such functions are resolved (statically) for actual objects. Formal object
  270. usage must have a consistent way of accessing these functions, as achieved thru
  271. vtables of function pointers in the actual objects (C++) or equivalent,
  272. providing statically-typed dynamic binding (this is really just defining simple
  273. function pointers with static typechecking in the base class, and filling them
  274. in in the derived class, along with offsets to reset the receiver).
  275.  
  276. The run-time selection of methods is another case of dynamic binding, meaning
  277. lookup is performed (bound) at run-time (dynamically).  This is often desired
  278. and even required in many applications including databases, distributed
  279. programming and user interaction (e.g. GUIs).  Examples can be found in
  280. [Garfinkel 93, p80] and [Cox 91, pp 64-67].  To extend Garfinkels example with
  281. multiple-polymorphism, a cut operation in an Edit submenu may pass the cut
  282. operation (along with parameters) to any object on the desktop, each of which
  283. handles the message in its own way (OO).  If an (application) object can cut
  284. many kinds of objects such as text and graphical objects, multiple-polymorphism
  285. comes into play, as many overloaded cut methods, one per type of object to be
  286. cut, are available in the receiving object, the particular method being
  287. selected based on the actual type of object being cut (which in the GUI case is
  288. not available until run-time).
  289.  
  290. Again, various optimizations exist for dynamic lookup to increase efficiency
  291. (such as found in [Agrawal 91] and [Chambers 92]).
  292.  
  293. Dynamic binding allows new objects and code to be interfaced with or added to
  294. a system without affecting existing code and eliminates switch statements.
  295. This removes the spread of knowledge of specific classes throughout a system,
  296. as each object knows what operation to support.  It also allows a reduction in
  297. program complexity by replacing a nested construct (switch statement) with a
  298. simple call.  It also allows small packages of behavior, improving coherence
  299. and loose coupling.  Another benefit is that code complexity increases not
  300. linearly but exponentially with lines of code, so that packaging code into
  301. methods reduces program complexity considerably, even further that removing
  302. the nested switch statement!  [Martin 92] covers some of these issues.
  303.  
  304.  
  305. 2.4)  Is There A Difference Between Being A Member Or Instance Of A Class?
  306. --------------------------------------------------------------------------
  307.  
  308. Yes (but be careful of context).  To use C++ terminology, an object (not
  309. a reference) is defined to be an instance of exactly one class (in classical
  310. OO), called its most derived class.  An object not directly contained in any
  311. other is called the complete object [Stroustrup 90].  An object is a member
  312. of several classes, including all of the classes its declared (or most derived)
  313. class inherits from.  With static typing and inclusion polymorphism based on
  314. class, if a polymorphic object (or reference) is made to refer to an object,
  315. that object must be a member of the polymorphic object's class.
  316.  
  317. This also provides a good example of differing definitions among object-
  318. oriented languages, since a member is defined as above in CLOS, but a member of
  319. a class is one of its instance variables in C++.
  320.  
  321.  
  322. 2.5)  What Is The Difference Between Static And Dynamic Typing?
  323. ---------------------------------------------------------------
  324.  
  325. Static typing refers to types declared in a program at compile-time, so no type
  326. information is available on objects at run-time.  Dynamic typing uses the
  327. inherent types of polymorphic objects, keeping track of the types of objects at
  328. run-time.  Statically typed dynamic binding is a compromise (usually
  329. implemented with tables of function pointers and offsets), and is how
  330. statically-typed OO languages provide polymorphism.  Some approaches provide
  331. both static and dynamic typing, sometimes with static typing providing type-
  332. safe programs and dynamic typing providing multiple-polymorphism [Agrawal 91]
  333. [Mugridge 91].  See also section 2.3.
  334.  
  335. Static typing is more efficient and reliable, but loses power.  Typical
  336. restrictions include only allowing a common set of base class functions (or
  337. any common functions for the more general subtyping or parametric polymorphic
  338. cases) to be available on formal objects and a lack of multiple-polymorphism
  339. (see section 1.19), both of which are overcome with dynamic typing.
  340.  
  341. Many languages provide dynamic typing: Smalltalk, Self, Objective-C, and etc.
  342. A limited dynamic typing scheme, called RTTI (Run Time Type Identification),
  343. is even being considered for the C++ standard.  A similar facility to safe
  344. downcasting (historically known as type narrowing), the thrust of RTTI, can
  345. also be found in recent versions of Eiffel.
  346.  
  347. See section 3.4 for a categorization of common OO languages by type system.
  348.  
  349.  
  350. 2.6)  What Is This I Hear About ML And Functional Programming Languages?
  351. ------------------------------------------------------------------------
  352.  
  353. ML, Metalanguage, is a functional programming language with a strongly typed
  354. polymorphic type system [Wikstrom 87].  Russell (see Appendix E) is a more
  355. recent functional language and Haskell [Hudak 92] provides a more modern and
  356. "pure" example.  Section 2.5 discusses why static typing has less power/
  357. flexibility than dynamic typing and the same applies to ML (although see the
  358. appendixes for an experimental dynamic extension to ML, Alcool-90 and [Cardelli
  359. 85] for a proper placement of ML's type system).  ML doesn't use inheritance
  360. for polymorphism; unlike OO languages, but provides the prototypical example of
  361. parametric polymorphism, so no inheritance is required.  This is "true" or
  362. "pure" statically (or strongly) checked parametric polymorphism, by Strachey's
  363. (and Cardelli and Wegner's) definitions.
  364.  
  365. Smalltalk is an example of a dynamically-typed language which does not check
  366. types during assignment (and hence for parameters) and therefore provides
  367. parametric polymorphism without static constraints (by Strachey's definition).
  368. However, Smalltalk's style uses inclusion polymorphism in practise and
  369. inheritance for subclassing (representation).
  370.  
  371.  
  372. 2.7)  What Is A Separation Between Type And Class (Representation)?
  373. -------------------------------------------------------------------
  374.  
  375. For a short answer:
  376.   Subtype Polymorphism, as opposed to Subclass Polymorphism, is the best answer
  377.   in OO.  Parametric polymorphism is a related concept where this is also true,
  378.   but is of a different flavor (and usually requires object attributes by use.
  379.   See also section 2.1).
  380.  
  381. A type can be considered a set of values and a set of operations on those
  382. values.  This can insure type-safe programming.  However, the representation of
  383. types (classes in OO) can be separated from the notion of type allowing many
  384. representations per type while still maintaining reasonable type-safety.
  385.  
  386. In many languages, a type has a single representation insuring all operations
  387. performed on that type are well defined (statically bound) and providing for
  388. efficiency by taking advantage of that representation wherever used.  In many
  389. OO languages, subclassing and dynamic binding provides for greater flexibility 
  390. by providing object specialization.  However, in many OO languages classes are
  391. used for assignment compatibility forcing an assigned object to inherit
  392. (transitively) from any polymorphic object's class (inclusion polymorphism
  393. based on class, or subclass polymorphism).  This insures all operations to be
  394. performed on any polymorphic object are satisfied by any replacing objects.
  395. This also insures all types share a common representation, or at least a
  396. common base interface specification.
  397.  
  398. By separating type from class, or representation (or perhaps separating class
  399. from type, by the aforementioned definition of type), a replacing object must
  400. satisfy the operations or type constraints of a polymorphic object (subtype
  401. polymorphism) but are not required to do to do so by an inheritance relation
  402. (subclass polymorphism), as is typical in most OOPLs.  Dropping this
  403. restriction is somewhat less type-safe, because accidental matches of method
  404. signatures can occur, calling for greater care in use.  [Black 86] discusses
  405. this issue in Emerald.  The same issue arises in parametric polymorphism
  406. (generics/templates), as any method matching a required signature is accepted,
  407. calling for careful matching of actual and formal generic parameters.  The
  408. difference between static and dynamic binding in OO and dynamic binding and
  409. subtyping seems similar.  A possible loss of semantic integrity/similarity is
  410. contrasted with greater power.
  411.  
  412. It is possible to specify desired abstract properties of type specifications
  413. with mechanisms similar to Eiffel's pre-, post-, and invariant conditions.
  414. This helps to insure the semantic integrity of replacing objects and their
  415. behavior.  [Liskov 93] provides a recent exposition.
  416.  
  417. Abstract classes ([Stroustrup 91] and [Meyer 88]) in typing provide a facility
  418. similar to subtype polymorphism; however, ACs require type compatible classes
  419. to inherit from them, providing a subclass polymorphism facility, and ACs can
  420. also specify representation.  Subtyping is therefore most useful to avoid
  421. spreading knowledge of classes throughout a system, which is a high priority
  422. for loosely coupled modules and in distributed programming [Black 87].
  423.  
  424. The formal type system found in [Cardelli 85], Emerald/Jade [Black 86] and
  425. [Raj 89], original trellis/Owl, an experimental C++ extension (See Appendix E,
  426. Signatures), Sather (originally Eiffel-based), and an Eiffel superset
  427. [Jones 92] are all examples of OO systems providing subtype polymorphism.
  428. Functional languages such as ML, Russell, and Haskell provide a separation with
  429. pure parametric polymorphism (as is also commonly found in OO languages in
  430. addition to inclusion polymorphism).
  431.  
  432. See also [Cook 90], "Inheritance Is Not Subtyping", for a formal approach.
  433.  
  434.  
  435. 2.8)  What Are Generics And Templates?
  436. --------------------------------------
  437.  
  438. Short Answer: Parametric Polymorphism (although various implementations
  439.               provide various subsets).
  440.  
  441. Generics (or Templates in C++) refer to the ability to parameterize types
  442. and functions with types.  This is useful for parameterized classes and
  443. polymorphic functions as found in languages such as Ada, C++, Eiffel, and
  444. etc., although these are "syntactic" or restricted forms [Cardelli 85].
  445. Generics are orthogonal to inheritance, since types (and classes)
  446. may be generically parameterized.  Generics provide for reusability in
  447. programming languages.  An example is a Stack with a generically
  448. parameterized base type.  This allows a single Stack class to provide
  449. many instantiations such as a Stack of ints, a Stack of any fundamental
  450. or user defined type, or even a Stack of Stacks of ...  Another example is
  451. a polymorphic sort function taking a base type with a comparison operator.
  452. The function can be called with any type (containing a comparison operator).
  453. See [Booch 87b] for several examples in Ada and [Stroustrup xx] and [Murray
  454. 93] for examples in C++.
  455.  
  456. While generics have many advantages, typical limitations include a static
  457. nature, which is an advantage for strong typechecking but a potential
  458. disadvantage when causing dynamic compilation (leading to a time/space
  459. efficiency tradeoff), and sources can cause inlining and create source code
  460. dependencies and expand code size (unlike a single-body or "true"
  461. parametrically polymorphic implementation.  Generics can also be viewed as a
  462. special case of type variables.
  463.  
  464. Functions are typically generic in statically-typed parametrically-polymorphic
  465. languages.  One such popular functional language is ML, in which all functions
  466. are generic.  Russell and Haskel are more modern variants (references are
  467. forthcoming, however see APPENDIX E).
  468.  
  469.  
  470. SECTION 3:  GENERAL
  471. ===================
  472.  
  473.   References:   (many more are to come)
  474.     [Coplien 92]    Covers C++, symbolic, exemplar (single-hierarchy), etc.
  475.     [Kim 89]        Covers many OO systems.
  476.  
  477.  
  478. 3.1)  What Is The "Classical" Object-Oriented Paradigm?
  479. -------------------------------------------------------
  480.  
  481. This refers to the usual class and object model.  Its any 2+ level system
  482. as described in section 1.4.  See also [Coplien 92].
  483.  
  484.  
  485. 3.2)  What Is The "Delegation/Prototyping" Object-Oriented Paradigm?
  486. --------------------------------------------------------------------
  487.  
  488. See [Kim 89, ch 1,3].
  489.  
  490. This is the 1 Level System as Described under Meta-Classes.  Delegation refers
  491. to the delegating of responsibility and can be applied to inheritance.  When a
  492. derived class does not have a desired attribute, it "delegates" responsibility
  493. to one of its base classes.  In delegation systems, each object has a delegate
  494. list instead of a parent list. Thus, delegation's primary emphasis is 
  495. on message passing where an object could delegate responsibility of a message
  496. it couldn't handle to objects that potentially could (its delegates).  Any
  497. object can be added to the delegate list, giving dynamic inheritance (of a
  498. sort).  Typically, delegation and prototyping languages also have "part
  499. inheritance" in which fields and methods can be added and deleted from objects.
  500. This makes for easy "prototyping", which allows for objects to be constructed
  501. piece by piece at run-time, although the term "prototyping" in the context of
  502. delegation languages usually refers to objects serving as prototypes for
  503. object instantiation, or exemplars.
  504.  
  505. Next's NextStep OS provides delegation using Objective-C, providing an example
  506. of delegation in a class-based language [Garfinkel 93].
  507.  
  508.  
  509. 3.3)  Are There Any Other Object-Oriented Paradigms?
  510. ----------------------------------------------------
  511.  
  512. There are many alternatives in OO.  Emerald/Jade ([Black 86] and [Raj 89])
  513. provides one, where inheritance is replaced with a roughly equivalent form
  514. where reuse occurs at a finer degree of granularity - method and instance
  515. variables - with subtype polymorphism making up the difference.
  516.  
  517. CLOS [Kim 89, ch 4] has a looser coupling of methods to classes and doesn't
  518. distinguish a receiver, but packages can help make up the difference.
  519.  
  520. Object Specialization [Sciore 89] is an example of a hybrid approach between
  521. delegation and classical systems, where parent classes have an extra level
  522. of indirection and inheritance hierarchies are specified on a per object/class
  523. basis.
  524.  
  525.  
  526. 3.4)  What Are The Major Object-Oriented Programming Languages Today?
  527. ---------------------------------------------------------------------
  528.  
  529. Statically-Typed:
  530.   Add 1 To Cobol giving Cobol with Objects.
  531.   C++
  532.   Classic-Ada
  533.   Dragoon
  534.   Emerald/Jade
  535.   Object Pascal
  536.   Trellis/Owl
  537.  
  538. Dynamically-Typed:
  539.   Actors Languages
  540.   C+@
  541.   Flavors
  542.   Self
  543.   Smalltalk
  544.  
  545. Both:
  546.   Actor
  547.   Ada-9x
  548.   BETA
  549.   C++ (With RTTI)
  550.   Cecil
  551.   CLOS
  552.   Eiffel
  553.   Modula-3
  554.   Objective-C
  555.   Sather
  556.  
  557.  
  558. 3.5)  What Are Object-Oriented Databases And Persistence?
  559. ---------------------------------------------------------
  560.  
  561. See also Appendices B and E and the comp.database.object newsgroup.
  562. Refs to be included in future FAQs.
  563.  
  564. Object-Oriented Databases are databases that support objects and classes.  They
  565. are different from the more traditional relational databases because they allow
  566. structured subobjects, each object has its own identity, or object-id (as
  567. opposed to a purely value-oriented approach) and because of support for methods
  568. and inheritance.  It is also possible to provide relational operations on an
  569. object-oriented database.  OODBs allow all the benefits of object-orientation,
  570. as well as the ability to have a strong equivalence with object-oriented
  571. programs, an equivalence that would be lost if an alternative were chosen, as
  572. with a purely relational database.
  573.  
  574. Another way of looking at Object-Oriented Databases is as a persistent object
  575. store with a DBMS.
  576.  
  577. Persistence is often defined as objects (and their classes in the case of
  578. OODBs) that outlive the programs that create them.  Object lifetimes can be
  579. viewed as a hierarchy, with locals/automatics having the shortest default
  580. lifetime and objects stored indefinitely in an OODB (which are persistent)
  581. having the longest.  Persistent object stores do not support query or
  582. interactive user interface facilities, as found in a fully supported OODBMS.
  583.  
  584. Appendix B also contains references for object-oriented interfaces to
  585. relational databases and see APPENDIX E, Papers, Persistent Operating Systems.
  586.  
  587. From the net:
  588. From: dbmsfacts@aol.com (DBMSfacts)
  589. Subject: ODMG Gopher and Web Addresses
  590. Date: 24 Oct 1994 13:10:02 -0400
  591.  
  592. The Object Database Management Group (ODMG) has set up Gopher and Web
  593. Servers at the following addresses:
  594.  
  595.   Gopher:  gopher.odmg.org, port 2073
  596.   WWW:  http://www.odmg.org:3083
  597.  
  598. These are still under construction.  What you can find right now are
  599. addresses and contact information for ODBMS vendors, ODMG membership
  600. information, updates to Release 1.1 of The Object Database Standard:
  601. ODMG-93 along with ODL lex and yacc files.  In the future, we will be
  602. adding more links to related sites, bibliographies, and a FAQ for ODBMSs. 
  603.  
  604. If you cannot access these servers, but would like information on the
  605. ODMG, send an email message to info@odmg.org and you will receive an
  606. automated reply.
  607.  
  608. Doug Barry
  609. ODMG Executive Director
  610.  
  611.  
  612. 3.6)  What Are Object-Oriented Operating Systems?
  613. -------------------------------------------------
  614.  
  615. Refs to be included in future FAQs.  See also Appendix E.
  616.  
  617. Object-Oriented Operating Systems provide resources through objects, sometimes
  618. all the way down to to the machine (OO architectures are found at the bottom).
  619. They are almost always distributed systems (DOS or DPOS), allowing objects to
  620. be passed freely between machines.  They are typically capability-based since
  621. objects, and hence system resources, can only be accessed if a capability to
  622. them is available to programs.
  623.  
  624. Here are some abstracts taken from several postings to the net.  This list is
  625. by no means exhaustive.
  626.  
  627. Apertos (Meta-Object-based Mikro-Kernel.  See Appendix E, Papers:28)
  628. Chorus Micro-kernel (written in C++, COOL, See Appendix E, Papers:63)
  629. Choices (research OS, UofI, C++, supports SVR4, See Appendix E, Papers)
  630. GEOS    (GeoWorks', written in Object Assembler, OO superset of 8086) 
  631. Mach    (CMU, supports BSD 4.3, really message-based)
  632. NachOS  (written in C++, OS teaching/learning OS)
  633. Ouverture Project (ESPRIT funded OMG IDL defines inter-module interfaces)
  634. Peace    (OO family-based parallel OS, See Appendix E, General)
  635. SOS
  636. Spring      (Sun, written in C++)
  637. PenPoint OS (Go, written in C++)
  638.  
  639. For the Spring Papers (free), Contact:
  640.   Sun Microsystems Laboratories, Inc.
  641.   M/S 29-01
  642.   2550 Garcia Avenue
  643.   Mountain View, CA USA  94043
  644.  
  645. See also APPENDIX E, PAPERS, Persistent Operating Systems entry.
  646.  
  647. From: whitney@oberon.Meakins.McGill.CA ()
  648.  
  649. Insight ETHOS: On Object-Orientation in Operating Systems
  650. ISBN 3 72811948 2
  651.  
  652. This thesis covers the design of an extensible object-oriented 
  653. operating systems. The language used was Oberon-2. It includes
  654. a generalization of the Rider/Carrier principle, Object Directories
  655. as well as basic OS issues such as memory, file, tasking management. 
  656. It covers extensible objected-oriented programming from hardware up.
  657. It reviews other designs such as Clouds and Choices which where written
  658. It reviews other designs such as Clouds and Choices which where written
  659. on C++. [[ The lack of type-tests in C++ was a problem in other designs.]]
  660. ETHOS was implemented as an operating system for the Ceres computers
  661. at the ETH. 
  662.  
  663.  
  664. 3.7)  What Are The Current Object-Oriented Methodologies?
  665. ---------------------------------------------------------
  666.  
  667. Here is a list of OOSE Methodologies:
  668.  
  669.   Berard                        [Berard 93]
  670.   BON                           [Nerson 92]
  671.   Booch                         [Booch 94]
  672.   Coad/Yourdon                  [Coad 91]
  673.   Colbert                       [Colbert 89]
  674.   de Champeaux                  [de Champeaux 93]
  675.   Embley                        [Embley 92]
  676.   EVB                           [Jurik 92]
  677.   FUSION                        [Coleman 94]
  678.   HOOD                          [HOOD 89]
  679.   IBM                           [IBM 90,91]
  680.   Jacobson                      [Jacobson 92]
  681.   Martin/Odell                  [Martin 92]
  682.   Reenskaug (OOram, was OORASS) [Reenskaug 91]
  683.   ROOM                          [Selic 94]
  684.   Rumbaugh et al.               [Rumbaugh 91]
  685.   Shlaer and Mellor             [Shlaer 88 and 92]
  686.   Wasserman                     [Wasserman 90]
  687.   Winter Partners (OSMOSYS)     [Winter Partners]
  688.   Wirfs-Brock et al.            [Wirfs-Brock 90]
  689.  
  690. Further Ideas And Techniques:
  691.   Meyer                         [Meyer 88]
  692.   Stroustrup                    [Stroustrup 91]
  693.  
  694. See APPENDIX D for CASE systems supporting these methodologies (several from
  695. the originators themselves).
  696.  
  697. See also section 1.21 for a discussion on OOA/OOD and etc.
  698.  
  699. Summaries and comparisons will be provided in future FAQs.  Suggestions for
  700. inclusion of other major or new methodologies should be sent to the FAQ author.
  701.  
  702. Here are some comparison studies posted to the net:
  703.  
  704. Arnold, P., Bodoff, S., Coleman, D., Gilchrist, H., Hayes, F., An Evolution of 
  705. Five Object Oriented Development Methods, Research report, HP Laboratories, 
  706. June 1991
  707.  
  708. de Champeaux, Dennis and Faure, Penelope. A comparative study of object-
  709. oriented analysis methods. Journal of Object Oriented Programming (JOOP), pp
  710. 21-32.  Vol.5, No. 1, 3/4-92
  711.  
  712. Fichman R.G. & Kemerer C.F.  OO and Conventional Analysis and Design
  713. Methodologies.  Computer, Oct 1992, Vol 25, No. 10, p 22-40
  714.  
  715. Fichman, Robert and Kemerer, Chris. Object-Oriented and Conventional Analysis
  716. and Design Methods - Comparison and Critique.  IEEE-Comp, Oct, 1992, pp 22-39.
  717. OOA, OOD, conventional analysis, conventional design, DeMarco SA, Yourdon SA,
  718. Bailin OO requirements specification, Coad-Yourdon OOA, Shlaer-Mellor OOA,
  719. Yourdon-Constantine SD, Martin information engineering design, Wasserman OOSD,
  720. Booch OOD, Wirfs-Brock responsibility-driven design.
  721.  
  722. Hong, S., van den Goor, G., and Brinkkemper, S.  A Comparison of Object-
  723. oriented Analysis and Design Methods. Working paper, Computer Information
  724. Systems Department, Georgia State University, Atlanta USA, 1992, 12 pages. To
  725. appear in the Proceedings of the 26th Hawaiian international conference on
  726. System Sciences, IEEE Computer Science Press.
  727.  
  728. Hong, S., van den Goor, G., Brinkkemper, S. A Formal Approach to the Comparison
  729. of Object-Oriented Analysis and Design Methodologies, Hawaii International 
  730. Conference on System Sciences (HICSS) (IEEE Computer Society Press, Hawaii)
  731. 1993, Vol. IV, pp. 689-698.  Summary of [van den Goor et.al., 1992] below.
  732.  
  733.   Order procedure:
  734.   Available from the authors at cisssh@gsusgi2.gsu.edu or sjbr@cs.utwente.nl.
  735.   The authors, regretfully, cannot supply ftp, postscript, TEX, or 
  736.   whatsoever.
  737.  
  738. Monarchi, David and Puhr, Gretchen I. A Research Typology for Object-Oriented
  739. Analysis and Design.  CACM/September 1992/Vol.35, No.9, pp35.
  740.  
  741. [Wilkie 93] summarizes, compares, and provides examples of Booch, Wirfs-Brock,
  742. Hood, Coad and Yourdon, Winter Partners, Shlaer and Mellor, Jacobson,
  743. Wasserman et al, Rumbaugh, Reenskaug et al, and Colbert.
  744.  
  745. Wirfs-Brock, R.J. and Johnson, R.E., "Surveying Current Research in Object-
  746. Oriented Design," The Communications of ACM, (33, 9) Sept. 1990, pp. 104-1124.
  747.  
  748. UNICOM. Approaches to Object-Oriented Analysis and Design.
  749. tel: l 44 895 256 484. Ask the TOC and have a look at it.
  750.  
  751.  
  752. Also commercially available:
  753.  
  754. An Evaluation of Object-Oriented Analysis and Design Methodologies (9)
  755. J. Cribbs, C Roe, S. Moon
  756. SIGS Books
  757. (212) 274-0640
  758. $149.
  759.  
  760. Object-Oriented Methodology Comparison Study (10 methodologies)
  761. Berard, Booch, Coad/Yourdon, Colbert, Embley, IBM, Martin/Odell, Rumbaugh,
  762. Shlaer/Mellor, Wirfs-Brock.  Also contains refs to several previous studies.
  763. Berard Software Engineering
  764. 101 Lakeforest Blvd., Suite 360, Gaithersburg, MD 20877
  765. Contact Person: Jim Youlio
  766. Phone:        301-417-9884
  767. Fax:          301-417-0021
  768. email:        info@bse.com
  769.  
  770. [van den Goor et.al., 1992] G. van den Goor, S. Hong and S. Brinkkemper,
  771. A Comparison of Six Object-oriented Analysis and Design Methods. Report
  772. Center of Telematics and Information Technology, University of Twente,
  773. the Netherlands, and Computer Information Systems Department, Georgia
  774. State University, Atlanta, USA, 1992, 163 pages, US$ 70.
  775.  
  776. This report gives an in-depth analysis of six generally accepted
  777. O-O methods, that are available in textbooks. The background, steps,
  778. concepts, notations, and specification techniques of the methods
  779. are extensively compared.
  780.  
  781. The six methods are:
  782. -  Object Oriented Analysis & Object Oriented Design (OOA/OOD) of Coad &
  783.       Yourdon (1991)
  784. -  Designing Object Oriented Software (DOOS) of Wirfs-Brock et.al. (1990)
  785. -  Object Modelling Technique (OMT) of Rumbaugh et.al. (1991)
  786. -  Object Oriented Systems Analysis (OOSA) of Shlaer & Mellor (1988)
  787. -  Object Oriented Design with Applications (OODA) of Booch (1991)
  788. -  Object Oriented Analysis and Design (OOAD) of Martin & Odell (1992).
  789.  
  790. The comparison is performed by meta-modelling, resulting into detailed
  791. information on the concepts of the methods (in EER notation) and on the
  792. steps of the procedure of the methods (in Task Diagrams). Extensive
  793. comparison tables of steps, concepts, techniques are included. Mappings of
  794. the methodical concepts to the constructs of programming languages (C++,
  795. Objective-C, Smalltalk-80, Object Pascal en CLOS) are given. A small
  796. test case illustrates the application of the methods.
  797.  
  798. Order procedure:
  799. Those who want to order the complete report (163 pp.) can order one by
  800. specifying their postal address in an e-mail (sjbr@cs.utwente.nl) or fax
  801. (+31.53.33.9605) attn. Sjaak Brinkkemper. The report will be send within
  802. two weeks with an invoice for US$ 70. (seventy dollar; including shipping,
  803. excl VAT).
  804.  
  805.  
  806. 3.8)  What Is the OMG/OMA/ORB/CORBA?
  807. ------------------------------------
  808.  
  809. Contents:
  810.   (3.8.1)  Contact Information
  811.   (3.8.2)  OMG Summary
  812.   (3.8.3)  Mail Server Access
  813.   (3.8.4)  OMG Publications
  814.              - First Class (Bi-Monthly Newsletter)
  815.              - Object Management Architecture Guide (OMA)
  816.              - The Common Object Request Broker: Arch. and Spec. (Corba)
  817.              - Pricing
  818.   (3.8.5)  Implementations (Brief)
  819.   (3.8.6)  Implementation Descriptions
  820.   (3.8.7)  Books, Articles, And Literature
  821.  
  822.  
  823. 3.8.1  Contact Information
  824. __________________________
  825.  
  826. Contact Person: Richard Soley (technical director) soley@omg.com
  827.  
  828. FTP Sites: 
  829.   omg.org:pub/*
  830.   omg.org:pub/NEC_DII/93-1-2.tar...            *CORBA (DII) (corba.ps.Z)
  831.   omg.org:pub/OMG_IDL_CFE_1.2/bin*              idl.SunOS4.x, idl.Solaris2.x
  832.   claude.ifi.unizh.ch:under pub/standards/spec  CORBA Spec
  833.  
  834. Headquarters:                            Marketing Office:
  835.   492 Old Connecticut Path                 3823 Birchwood Drive
  836.   Framingham, MA 01701                     Boulder, CO  80304
  837.   Tel: 508-820-4300                        Tel: 303-444-8129
  838.   Fax: 508-820-4303                        Fax: 303-444-8172
  839.  
  840.  
  841. 3.8.2  OMG Summary
  842. __________________
  843.  
  844. From: soley@emerald.omg.ORG (Richard Mark Soley)
  845. Subject: OMG
  846.  
  847. In answer to your general question about the OMG, here's a brief overview.
  848. Feel free to call, fax or email for more information.
  849.  
  850.         -- Richard Soley
  851.            Vice President & Technical Director
  852.            Object Management Group, Inc.
  853.            and coincidentally, MIT '82, SM '85, PhD '89 (EECS)
  854.  
  855. The Object Management Group (OMG) is an international software industry
  856. consortium with two primary aims:
  857.  
  858. (*) promotion of the object-oriented approach to software engineering
  859.     in general, and
  860.  
  861. (*) development of command models and a common interface for the development
  862.     and use of large-scale distributed applications (open distributed
  863.     processing) using object-oriented methodology.
  864.  
  865. In late 1990 the OMG published its Object Management Architecture
  866. (OMA) Guide document. This document outlines a single terminology for
  867. object-oriented languages, systems, databases and application
  868. frameworks; an abstract framework for object-oriented systems; a set
  869. of both technical and architectural goals; and an architecture
  870. (reference model) for distributed applications using object-oriented
  871. techniques.  To fill out this reference model, four areas of
  872. standardization have been identified:
  873.  
  874. 1) the Object Request Broker, or key communications element, for
  875.    handling distribution of messages between application objects in
  876.    a highly interoperable manner;
  877.  
  878. 2) the Object Model, or single design-portability abstract model for
  879.    communicating with OMG-conforming object-oriented systems;
  880.  
  881. 3) the Object Services, which will provide the main functions for
  882.    realising basic object functionality using the Object Request Broker -
  883.    the logical modeling and physical storage of objects; and
  884.  
  885. 4) the Common Facilities will comprise facilities which are useful in
  886. many application domains and which will be made available through OMA
  887. compliant class interfaces.
  888.  
  889. The OMG adoption cycle includes Requests for Information and
  890. Proposals, requesting detailed technical and commercial availability
  891. information from OMG members about existing products to fill
  892. particular parts of the reference model architecture.  After passage
  893. by Technical and Business committees to review these responses, the
  894. OMG Board of Directors makes a final determination for technology adoption.
  895. Adopted specifications are available on a fee-free basis to members and
  896. non-members alike.
  897.  
  898. In late 1991 OMG adopted its first interface technology, for the Object
  899. Request Broker portion of the reference model.  This technology, adopted
  900. from a joint proposal (named "CORBA") of Hewlett-Packard, NCR Corp.,
  901. HyperDesk Corp., Digital Equipment Corp., Sun Microsystems and Object
  902. Design Inc. includes both static and dynamic interfaces to an inter-
  903. application request handling software "bus."
  904.  
  905. Unlike other organizations, the OMG itself does not and will not
  906. develop nor sell software of any kind.  Instead, it selects and promulgates
  907. software interfaces; products which offer these interfaces continue to be
  908. developed and offered by commercial companies.
  909.  
  910. In order to serve OMG membership interested in other object-oriented systems
  911. arenas besides the distributed system problem, the Group supports Special
  912. Interest Groups for discussion of possible standards in other areas.  These
  913. groups at present are:
  914.  
  915.         1) Object Oriented Databases;
  916.         2) OO Languages;
  917.         3) End-User Requirements;
  918.         4) Parallel Processing;
  919.         5) Analysis & Design Methodologies;
  920.         6) Smalltalk; and
  921.         7) Class Libraries.
  922.  
  923. Any company, university/research institution or individual, whether
  924. end-user or vendor, can become a member of this body.  Administrative
  925. details are given at the end of this paper.
  926.  
  927.  
  928. 3.8.3  Mail Server Access
  929. _________________________
  930.  
  931. Information via Mail Server:
  932.   Send the following commands in a letter to the mail server.
  933.  
  934. mail omg_server@omg.org
  935. help                             (how to use file server)
  936. index                            (return a list of all available files)
  937. get <file>                       (get files returned by  index)
  938. log <info>                       (logs info on server)
  939. address <e-mail address)         (use this address instead of sender)
  940. list <directory> [match]         (index a directory, pattern 'match' files)
  941. size <segment size>              (max file size to send)
  942.  
  943. list mail
  944. list docs
  945. get docs/doclist.txt             
  946. get docs/91-12-1.ps               CORBA spec [although it looks a little old]
  947.  
  948.  
  949. Recommended (from the net):
  950.  
  951. mail omg_server@omg.org
  952. Subject: 
  953. help
  954. index
  955. list
  956. list mail
  957. list docs
  958. get docs/doclist.txt
  959.  
  960.  
  961. 3.8.4  OMG Publications
  962. _______________________
  963.  
  964. Below is from omg.org:pub/CORBA
  965.  
  966.  
  967. > First Class (Bi-Monthly Newsletter)
  968.  
  969. First Class is OMG's non-commercial bi-monthly 28-page
  970. newsletter. First Class provides current information on Object
  971. Technology developments, both technically and commercially. First
  972. Class offers an open editorial forum on numerous Object
  973. Technology topics and issues.  This publication features
  974. commentaries from software industry leaders, informative user
  975. case histories, OT training information and the latest object-
  976. oriented product announcements.  All OMG activities and the
  977. ongoing development of the Object Management Architecture are
  978. regularly reported.
  979.  
  980.  
  981. > Object Management Architecture Guide (OMA)
  982.  
  983. The members of the OMG have a shared goal of developing and using
  984. integrated software systems.  These systems should be built using
  985. a methodology that supports modular production of software;
  986. encourages reuse of code; allows useful integration across lines
  987. of developers, operating systems and hardware; and enhance long-
  988. range maintenance of that code.  As an organization, OMG believes
  989. that the object-oriented approach to software construction best
  990. supports their goals.  The OMA publication outlines the
  991. groundwork for technology response to Request for Proposals (RFP)
  992. and the adoption of specifications.
  993.  
  994.  
  995. > The Common Object Request Broker: Arch. and Spec. (Corba)
  996.  
  997. The CORBA, as defined by the OMG's Object Request Broker (ORB),
  998. provides the mechanisms by which objects transparently make
  999. requests and receive responses. The ORB provides interoperability
  1000. between applications on different machines in heterogeneous
  1001. distributed environments and seamlessly interconnects multiple
  1002. object systems. The Common Object Request Broker Architecture and
  1003. Specification described in this published document is a self-
  1004. contained response to the Request for Proposals (RFP) issued by
  1005. the ORB Task Force of the OMG.
  1006.  
  1007. > Pricing
  1008.  
  1009. [Here's why you don't see the specifications posted to the net or available via
  1010.  ftp!  These are from the list of literature and periodicals listed in
  1011.  omg.org:pub/CORBA]
  1012.  
  1013. o I would like a one year subscription to First Class
  1014.     ______ for $40 U.S.,  ______ for $50 outside U.S.
  1015.  
  1016. o I would like to order  ______ copy(s) of the Object Management
  1017.   Architecture (OMA) Guide for $50 each.
  1018.  
  1019. o I would like to order  ______ copy(s) of the CORBA for $50 each.
  1020.  
  1021. o [Combinations]
  1022.  
  1023. Contact documents@omg.org or omg_documents@omg.org for more of the same...
  1024.  
  1025.  
  1026. 3.8.5  Implementations (Brief)
  1027. ______________________________
  1028.  
  1029. > DEC ObjectBroker Version 2.5  (Version 2.1 was ACA)
  1030.   Full implementation of OMG CORBA 1.1.  Digital's ObjectBroker is a 100 %
  1031.   compliant implementation of CORBA and is available on these  platforms:
  1032.   IBM AIX, IBM MVS(port in progress), HP-UX, Macintosh, MS-Windows 3.1, NT,
  1033.   OSF/1, SunOS, ULTRIX, Digital  VAX/VMS, Digital OpenVMS
  1034. Contact:
  1035.   Andrew Comas
  1036.   comas@nyo.dec.com  (212) 856-2507
  1037.   Digital Equipment Corporation.
  1038.   ObjectBroker
  1039.   110 Spit Brook Road
  1040.   Nashua, New Hampshire  03062-2698
  1041.  
  1042. > HP ORB Plus and HP Distributed Smalltalk
  1043.    Full implementation of the OMG CORBA 1.1 Object Request Broker. Also DOMF.
  1044.    Hewlett-Packard
  1045.    Distributed Computing Group
  1046.    19447 Pruneridge Avenue
  1047.    Cupertino, CA 95014-9974 (USA)
  1048.    Ian Fuller ian@cup.hp.com (408) 447-4722
  1049.  
  1050. > HyperDesk (Westborough MA) HD-DOMS, joe_cordo@hyperdesk.com
  1051.    Runs on SPARC, HP/UX, IBM RS-6000, Data General Aviion, MS-Windows (client
  1052.    API only), NetWare (planned, Novell owns part of HyperDesk).
  1053.  
  1054. > IBM SOM (System Object Model)
  1055.    Available on AIX and OS/2.  See Distributed Computing Monitor, March 93 for
  1056.    a detailed review.
  1057.  
  1058. > ILU (free, see APPENDIX E entry 59)
  1059.    Object RPC compatible with OMG CORBA 1.2 spec (will compile OMG IDL and
  1060.    generate OMG compliant code for OMG-specified languages).
  1061.    parcftp.parc.xerox.com:/pub/ilu/ilu.html
  1062.  
  1063. > IONA Technologies, Dublin Orbix, info@iona.ie
  1064.   First full and complete implementation of OMG's CORBA.
  1065.  
  1066. > NCR 'Cooperative Frameworks' -- a Distributed Object Foundation
  1067.   (1) C++ ORB toolkit consisting of over 300 C++ classes and runtime libraries
  1068.   (2) CORBA 1.1 toolkit
  1069.  
  1070. > ORBELINE - The SMART Object Request Broker - PostModern Computing
  1071.   Complete implementation of CORBA.  Free academic; com. eval licence avail.
  1072.   SunOS 4.x, Solaris 2.3, and OSF/1 versions of ORBeline available; will
  1073.   consider making other platforms available if enough interest. See Appendix E.
  1074.  
  1075. > ROLSCH CONSULTING (RC-ORB)
  1076.   Implements ORB spec, DOS/Windows 3.1, 12 user license: $99.
  1077.   Ref: Datamation, LOOK AHEAD Section, August 1.  German Company.
  1078.  
  1079. > SuiteSoftware (Anaheim CA) SuiteDOME
  1080.     runs on VAX/VMS, Unix, PC
  1081.  
  1082. > Sun DOE
  1083.  
  1084. > Tivoli
  1085.  
  1086. > CS Dept. University of Zurich, Switzerland.  maffeis@ifi.unizh.ch
  1087.     The ELECTRA Toolkit (not finished)
  1088.  
  1089.  
  1090. 3.8.6  Implementation Descriptions
  1091. ___________________________________
  1092.  
  1093. The OMG also has a (Corporate) Membership list and "known CORBA supporters"
  1094. list with their info package.
  1095.  
  1096.  
  1097. > The ELECTRA Toolkit
  1098.  
  1099. CS Dept. University of Zurich, Switzerland.  maffeis@ifi.unizh.ch
  1100. The ELECTRA Toolkit
  1101.  
  1102. Subject: ORB Implementations
  1103. Date: Tue, 4 May 1993 13:12:36 +0200 (MET DST)
  1104. From: Silvano Maffeis <maffeis@ifi.unizh.ch>
  1105.  
  1106.   something like an Object Broker, but it is *not* CORBA compatible (yet).
  1107.   Electra is a research project and not available yet.
  1108.  
  1109.   Its a toolkit for building failure resilient, distributed applications
  1110.   in C++. It supports object-groups, virtual synchrony, multithreading
  1111.   etc. Electra is based on the HORUS toolkit (which is "the new ISIS
  1112.   implementation" developed at Cornell, Ithaca NY.)
  1113.   An overview paper to electra is available from:
  1114.   ftp.ifi.unizh.ch: pub/techreports/electra.ps.Z
  1115.  
  1116.  
  1117. > HD_DOMS
  1118.  
  1119. HD-DOMS (HyperDesk Distributed Object Management System).  A
  1120. CORBA-compliant DOMS.  Includes a GUI API driver for prototyping and
  1121. exercising objects, a bundled object database for persistent object
  1122. storage, a Kerberos-based authentication service, a location service, a
  1123. set of base classes to speed development, and a test script language.
  1124. Revision 1.0 has been shipping since beginning of '92.  Revision 1.1
  1125. (which includes support for CORBA's static client interface) is available
  1126. now, and a NetWare version is in the works.  Submitted a C++ language
  1127. mapping for IDL to the OMG recently.
  1128.  
  1129. HyperDesk Corporation
  1130. 2000 West Park Drive
  1131. Westboro, MA 01581
  1132. (508)366-5050
  1133.  
  1134.  
  1135. > HP ORB Plus and HP Distributed Smalltalk
  1136.  
  1137.   ============================================================================
  1138.   SUBJECT:  HP INTRODUCES DISTRIBUTED-COMPUTING SOLUTION FOR BUILDING
  1139.             SCALABLE, OBJECT-ORIENTED APPLICATIONS
  1140.   DATE:     September 27, 1993
  1141.   ----------------------------------------------------------------------------
  1142.  
  1143.    PALO ALTO, Calif.--(BUSINESS WIRE) via First! -- Hewlett-Packard Company
  1144.  today introduced a distributed-computing solution for building scalable,
  1145.  object-oriented applications.
  1146.  
  1147.    With HP ORB Plus, programmers can develop scalable, object-based
  1148.  applications that can be distributed throughout the enterprise.  HP also
  1149.  introduced an enhanced version of HP Distributed Smalltalk.
  1150.  
  1151.    HP ORB Plus and HP Distributed Smalltalk are major components of HP's
  1152.  overall distributed-computing strategy, which is designed to give customers
  1153.  integrated, desktop access to enterprise-wide information and resources in
  1154.  distributed heterogeneous systems environments.  Of all computer companies,
  1155.  HP believes it is best positioned to help customers take advantage of
  1156.  distributed computing. HP provides a wide variety of distributed-computing
  1157.  products, understands how to help customers adopt new technology for maximum
  1158.  business benefit, and offers worldwide support and training programs,
  1159.  ranging from analysis and design to deployment.
  1160.  
  1161.    HP ORB PLUS:  CORBA AND DCE COMBINED
  1162.  
  1163.    HP ORB Plus is the only environment that combines the complete CORBA 1.1
  1164.  specification from the Object Management Group with the DCE standard from
  1165.  the Open Software Foundation(tm) as its transport mechanism.  DCE is
  1166.  designed to let developers write one application and then deploy it --
  1167.  without modification -- on any other system that supports DCE.  HP ORB Plus
  1168.  reduces the complexity of developing distributed applications so programmers
  1169.  can concentrate on the application itself without needing to know multiple
  1170.  operating systems, networking protocols or where application objects are
  1171.  stored.
  1172.  
  1173.    The DCE (Distributed Computing Environment) standard provides an
  1174.  integrated set of services that can be used separately or together to
  1175.  provide a distributed computing environment that's easy to administer.  The
  1176.  CORBA (common-object-request-broker architecture) specification provides a
  1177.  standard for how objects (in applications, repositories or class libraries)
  1178.  make requests and receive responses across a distributed network.
  1179.  
  1180.    HP ORB PLUS DETAILS
  1181.  
  1182.    HP ORB Plus consists of several components: the Distributed Object
  1183.  Management Facility (DOMF), object services, developers' and administrative
  1184.  tools, and sample applications.  HP's DOMF provides a location-transparent
  1185.  object-communication mechanism across heterogeneous networks by using the
  1186.  DCE standard.  This object- enabling technology specification was jointly
  1187.  developed with SunSoft. By following a common specification, HP and SunSoft
  1188.  have made it easier for their customers to port applications between their
  1189.  platforms.
  1190.  
  1191.    In addition, HP is working with IBM to integrate HP's DOMF with IBM's
  1192.  System Object Model with extensions for distribution.  This integration will
  1193.  eventually provide users with complete scalability, portability and
  1194.  interoperability of distributed applications across HP and IBM platforms.
  1195.  This is part of the companies' planned approach toward a standards-based,
  1196.  "plug-and-play"  object-oriented environment.  This will give developers,
  1197.  system administrators and end users language-neutral, enterprise-wide,
  1198.  heterogeneous support for building, managing and using distributed object-
  1199.  oriented applications.
  1200.  
  1201.    "We're so convinced of the value of object technology that we're staking
  1202.  our entire company on it,"  said Richard Tanler, president and chief
  1203.  executive officer of Information Advantage, Inc.  "Our object-based
  1204.  applications for retailers provide the means to a competitive business edge.
  1205.  We plan to use HP ORB Plus to develop new object-based products that
  1206.  retailers can distribute to end users throughout headquarters, all chain
  1207.  stores, and warehousing and distribution operations."
  1208.  
  1209.    HP DISTRIBUTED SMALLTALK 2.0
  1210.  
  1211.    In a related announcement, HP introduced Version 2.0 of HP Distributed
  1212.  Smalltalk.  This toolset works with VisualWorks from ParcPlace Systems to
  1213.  provide programmers with a rapid development environment for creating and
  1214.  running distributed applications.  These applications can use object
  1215.  databases (currently OpenODB from HP and Gemstone from Servio) as their
  1216.  storage mechanism to facilitate the reuse of objects.
  1217.  
  1218.    Applications built using HP Distributed Smalltalk currently run without
  1219.  modification on HP, Sun and IBM UNIX(R) system-based workstations.  They
  1220.  also will run on Apple Macintosh computers and on any PC running the Windows
  1221.  3.1 or Windows NT operating systems from Microsoft(R) Corp., once
  1222.  VisualWorks 2.0 is released (expected within two months.)
  1223.  
  1224.    New HP Distributed Smalltalk 2.0 features include the following:
  1225.  
  1226.    --  easier deployment, with the ability to run multiple HP
  1227.        Distributed Smalltalk-based applications on a single system;
  1228.    --  up to 400 percent increased performance, through quicker
  1229.        sending and receiving of remote messages, and reusable
  1230.        object libraries;
  1231.    --  run-time version, for full production deployment; and
  1232.    --  easier development, with remote object browsing so
  1233.        developers can find and use objects more quickly.
  1234.  
  1235.    TECHNICAL DETAILS AND AVAILABILITY
  1236.  
  1237.    HP's DOMF includes the object request broker, interface- definition-
  1238.  language compiler, static and dynamic invocation interface and interface
  1239.  repository.  In addition to these OMG-specific features, most developers
  1240.  writing distributed, object-oriented applications require additional
  1241.  interfaces to use objects effectively.  So developers don't need to create
  1242.  their own, HP has supplied several object-service interfaces for developers
  1243.  to use. That's why HP ORB Plus includes OMG interfaces and implementations
  1244.  for properties, life cycle, associations, event notification and naming.
  1245.  
  1246.    HP's limited release of HP ORB Plus to key developers is designed so that
  1247.  customer input can be incorporated into the product early in its development
  1248.  cycle.  The initial version will work with the C++ programming language.
  1249.  For the generally available Developer's Kit, C++, C and Smalltalk
  1250.  interoperability is planned so objects written in different languages can be
  1251.  combined into one application.  The Developer's Kit is scheduled to be
  1252.  available mid- 1994; prices will be announced then.  HP ORB Plus runs on the
  1253.  HP Apollo 9000 Series 700 workstations and HP 9000 Series 800 business
  1254.  servers.
  1255.  
  1256.    Hewlett-Packard Company is an international manufacturer of measurement
  1257.  and computation products and systems recognized for excellence in quality
  1258.  and support.  The company's products and services are used in industry,
  1259.  business, engineering, science, medicine and education in approximately 110
  1260.  countries.  HP has 94,900 employees and had revenue of $16.4 billion in its
  1261.  1992 fiscal year.
  1262.  
  1263.  EDITORIAL CONTACTS:
  1264.     Hewlett-Packard Company
  1265.     Lynne Hanson, 408/447-1415, Cupertino, Calif.
  1266.     Jill Kramer, 408/447-4275, Cupertino, Calif.
  1267.  
  1268.  ==================
  1269.    For more information about HP ORB Plus, contact Kathy Litch
  1270.    (litch_k@apollo.hp.com).
  1271.  
  1272.    For more information about HP Distributed SmallTalk, contact
  1273.    Jerry Boortz (jerry_boortz@hp4000.desk.hp.com).
  1274.  
  1275.  
  1276. > Iris RDOM
  1277.  
  1278. From: rcbc@cs.cornell.edu (Robert Cooper)
  1279. Subject: Re: DCE vs. CORBA
  1280. Reply-To: rcbc@isis.com
  1281. Product: Isis Reliable Distributed Object Manager(tm) (RDOM)
  1282. Company: Isis Distributed Systems, Inc., Ithaca NY, USA.
  1283.  
  1284. Isis RDOM(tm) is a fault tolerant distributed ORB platform for reliable
  1285. multi-lingual object-oriented applications. RDOM provides an "object group"
  1286. paradigm for constructing complex applications out of collections of
  1287. cooperating objects. RDOM is built on top of the Isis Distributed
  1288. Toolkit(tm). RDOM provides interfaces from Smalltalk (Parcplace),
  1289. Objective-C, and C++, and runs on most Unix workstations. RDOM is currently
  1290. not CORBA compliant, but will be brought to compliance during 3Q93.
  1291.  
  1292. Status: 
  1293.  
  1294. RDOM has been at beta test sites since January. General release of
  1295. the Smalltalk and Objective-C language interfaces is expected in June.
  1296. The C++ interface in August. Customers include AMD, Consilium and Swiss
  1297. Bank Corp).  
  1298.